home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 2 / CD ACTUAL VOL 2.iso / docs / slack-do / base / sbin / querypos < prev    next >
Encoding:
Text File  |  1995-09-10  |  559 b   |  23 lines

  1. #!/bin/sh
  2. # querypost: query our post server whether there is mail waiting for us.
  3. # Copyright 1994-5 John A. Phillips - john@linux.demon.co.uk
  4. # usage: querypost [sitename]
  5.  
  6. # Assign the site to be queried.  This site defaults if none is specified.
  7. sitename=${1:-`/bin/hostname -s`}
  8.  
  9. # Set the post server.
  10. post_server=post.demon.co.uk
  11.  
  12. # Assign a temporary file.
  13. tmpfile=/tmp/mail.waiting.$$
  14.  
  15. # Check for waiting mail.
  16. /usr/bin/finger ${sitename}@${post_server} 2>&1 >$tmpfile
  17. /bin/echo ""
  18. /bin/cat $tmpfile
  19. /bin/echo ""
  20.  
  21. # Finally, tidy up.
  22. rm -f $tmpfile
  23.